home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_shs_whip.cog < prev    next >
Text File  |  1999-11-15  |  1KB  |  59 lines

  1. # Jones 3D Cog Script
  2. #
  3. # shs_Whip.cog    To climb or to swing, that is the question.  
  4. #
  5. # [JWC, RT]  
  6. #
  7. # (C) 1998 LucasArts Entertainment Company LLC. All Rights Reserved
  8. #
  9. # ========================================================================================
  10.  
  11. symbols
  12.  
  13. message startup
  14. message entered
  15.  
  16. sector  swing
  17.  
  18. thing   block
  19. thing    strut                   
  20. thing   player  local
  21.                            
  22. flex    wait=2
  23.  
  24.       
  25. end
  26.  
  27. # ========================================================================================
  28.  
  29. code
  30.  
  31. startup:
  32.     
  33.     player = GetLocalPlayerThing();
  34.     return;
  35.     
  36. entered:
  37.     If (GetSenderRef() == block) 
  38.         {
  39.         If (GetSourceRef() != player) return;
  40.         SetThingFlags(strut, 0x8);  //makes whip climb
  41.            Print("climbable");
  42.         return;
  43.         }
  44.     If (GetSenderRef() == swing)
  45.         {
  46.         If (GetSourceRef() != player) return;
  47.         SetThingFlags(strut, 0x80000000);   //makes whip swing
  48.         Print("Swingable");
  49.         return;
  50.         }
  51.     return;
  52.  
  53.  
  54.  
  55. end
  56.  
  57.  
  58.  
  59.